home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 2
/
Gold Medal Software Volume 2 (Gold Medal) (1994).iso
/
utils
/
tpshw.arj
/
DIAL.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-10-16
|
490b
|
18 lines
@ECHO OFF
IF "%1" == "" GOTO SYNTAX
IF "%2" == "" GOTO SYNTAX
ECHO ATDT%1>COM%2
GOTO END
:SYNTAX
CLS
@ECHO.
@ECHO SYNTAX: DIAL XXXXXXX X
@ECHO ^PHONE# ^COM PORT 1-4
@ECHO.
@ECHO NOTE: Use another batch file to run DIAL with TIME-PRO if phone number is
@ECHO over 7 digits. For example, create a batch file called DIALER.BAT
@ECHO that contains the line "DIAL XXXXXXXXXXX X". Then use the name
@ECHO "DIALER" with TIME-PRO.
@ECHO.
:END